@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.check-box{
    background-color: transparent !important;
}

.check-box .show-btn i{
    padding: 10px 20px 10px 20px;
    position: fixed;
    font-size: 50px;
    left: 92%;
    top: 83%;
    cursor: pointer;
    border-radius: 20px;
    align-items: center;
    background: #2696E9;
    color: #fff;
    z-index: 99999;
    margin-top: 30px;
    transition: .5s ease;

}

.check-box .show-btn i:hover{
    background: #1b70b1;
    color: #ddd;

}

.check-box input[type="checkbox"]{
    display: none;
    z-index: 99999;
    transition: .5s ease;


}

.check-box #show:checked ~ .wrapper{
    display: block;
    z-index: 99999;
    transition: .5s ease;

}

.check-box .wrapper{
    display: none;
    width: 320px;
    height: 450px;
    margin: auto;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 10px 5px rgba(0, 0, 0, 0);
    animation: popup 1s;
    position: fixed;
    top: 0;
    left: 0%;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
    display: none;
    transition: .5s ease;

}

.check-box h5{
    color: #fff;
    padding: 15px;
    background: #2696E9;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.check-box p{
    font-size: 13px;
    margin-top: 10px;
    padding: 5px 20px;
    text-align: center;
}

.check-box form{
    margin: 10px;
    width: 270px;
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid rgba(236, 234, 234);
}

.check-box input{
    display: block;
    width: 92%;
    border: none;
    outline: none;
    padding: 10px;
    color: #2696E9;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid rgba(236, 234, 234);
}

.check-box input::placeholder{
    color: rgb(214, 211, 211);
}

.check-box button{
    width: 100%;
    padding: 8px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    background: #2696E9;
    border-radius: 10px;
    transition: .3s ease;
}

.check-box button:hover{
    background-color: #04487c;
}

.check-box input:focus{
    border-color: #2696E9;
    transition: .5s ease;

}

.check-box span{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    margin: 20px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 9999999 !important;
    transition: .5s ease;

  }
  

@keyframes popup {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.3);
    }
    60%{
        transform: scale(1.1);
    }
    70%{
        transform: scale(1.2);
    }
    80%{
        transform: scale(1);
    }
    90%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}

@media screen and (max-width: 767px){
    .check-box .show-btn{
        left: 88%;
        top: 83%;
        width: 40px;
        height: 40px;
    }

    .check-box .show-btn i{
        font-size: 20px;
    }

    .check-box .show-btn i{
        margin: 12px 10px;
        font-size: 20px;
        left: 89%;

    }

    
    
    
    
}


